home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Resources / Browsers, Managers & Extensions / Mozilla Weave 0.2.7 / latest-weave.xpi / chrome / sync.jar / content / share.xul < prev    next >
Extensible Markup Language  |  2008-07-08  |  2KB  |  45 lines

  1. <?xml version="1.0"?>
  2.  
  3. <?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
  4.  
  5. <!DOCTYPE overlay SYSTEM "chrome://weave/locale/share.dtd">
  6.  
  7. <dialog xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  8.         id="share-dialog" 
  9.         windowtype="Sync:Share"
  10.         title="&dialog.title;"
  11.         buttons="cancel"
  12.         buttonlabelcancel="&close.button.label;"
  13.         ondialogcancel="return gShare.doCancel();">
  14.  
  15.   <script type="application/x-javascript"
  16.           src="chrome://weave/content/load-weave.js"/>
  17.   <script type="application/x-javascript"
  18.           src="chrome://weave/content/share.js"/>
  19.  
  20.   <stringbundleset id="stringbundleset">
  21.     <stringbundle id="weaveStringBundle"
  22.                   src="chrome://weave/locale/share.properties"/>
  23.   </stringbundleset>
  24.  
  25.   <vbox>
  26.     <label id="folder-msg" value=""/>
  27.     <label value="&description.top;"/>
  28.     <separator class="thin"/>
  29.     <hbox align="center">
  30.       <label control="username" value="&username.label;"/>
  31.       <textbox id="username"/>
  32.       <button label="&share.button.label;" oncommand="gShare.doShare();"/>
  33.     </hbox>
  34.     <separator class="thin"/>
  35.     <hbox align="center">
  36.       <image id="throbber" src="chrome://weave/skin/sync-throbber-16x16.png"/>
  37.       <image id="throbber-active"
  38.              src="chrome://weave/skin/sync-throbber-16x16-active.apng"
  39.              hidden="true"/>
  40.       <label id="status.label" value="&status.waiting;"/>
  41.     </hbox>
  42.     <spacer style="min-height: 5px" flex="1"/>
  43.   </vbox>
  44. </dialog>
  45.